home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / PHPAdsNew.nasl < prev    next >
Text File  |  2005-01-14  |  2KB  |  82 lines

  1. #
  2. # This script was written by Renaud Deraison <deraison@cvs.nessus.org>
  3. #
  4. # See the Nessus Scripts License for details
  5. #
  6.  
  7. if(description)
  8. {
  9.  script_id(11101);
  10.  script_bugtraq_id(3392);
  11.  script_version ("$Revision: 1.10 $");
  12.  script_cve_id("CVE-2001-1054");
  13.  name["english"] = "PHPAdsNew code injection";
  14.  
  15.  script_name(english:name["english"]);
  16.  
  17.  desc["english"] = "
  18. It is possible to make the remote host include php files hosted
  19. on a third party server using PHPAdsNew.
  20.  
  21. An attacker may use this flaw to inject arbitrary code in the remote
  22. host and gain a shell with the privileges of the web server.
  23.  
  24. Solution : Upgrade to PHPAdsNew Beta 6.1 or newer
  25. Risk factor : High";
  26.  
  27.  
  28.  
  29.  
  30.  script_description(english:desc["english"]);
  31.  
  32.  summary["english"] = "Checks for the presence of remotehtmlview.php";
  33.  
  34.  script_summary(english:summary["english"]);
  35.  
  36.  script_category(ACT_ATTACK);
  37.  
  38.  
  39.  script_copyright(english:"This script is Copyright (C) 2002 Renaud Deraison",
  40.         francais:"Ce script est Copyright (C) 2002 Renaud Deraison");
  41.  family["english"] = "CGI abuses";
  42.  family["francais"] = "Abus de CGI";
  43.  script_family(english:family["english"], francais:family["francais"]);
  44.  script_dependencie("find_service.nes", "http_version.nasl");
  45.  script_require_ports("Services/www", 80);
  46.  exit(0);
  47. }
  48.  
  49. #
  50. # The script code starts here
  51. #
  52.  
  53.  
  54. include("http_func.inc");
  55. include("http_keepalive.inc");
  56.  
  57. port = get_http_port(default:80);
  58.  
  59. if(!get_port_state(port))exit(0);
  60. if(!can_host_php(port:port))exit(0);
  61.  
  62.  
  63.  
  64. function check(loc)
  65. {
  66.  req = http_get(item:string(loc, "/remotehtmlview.php?phpAds_path=http://xxxxxxxx"),
  67.          port:port);
  68.  r = http_keepalive_send_recv(port:port, data:req);
  69.  if( r == NULL )exit(0);
  70.  if(egrep(pattern:".*http://xxxxxxxx/dblib\.php.*", string:r))
  71.  {
  72.      security_hole(port);
  73.     exit(0);
  74.  }
  75. }
  76.  
  77. check(loc:"");
  78. foreach dir (cgi_dirs())
  79. {
  80. check(loc:dir);
  81. }
  82.